/* NAVBAR STYLING */
.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
	color: rgba(255, 138, 23, 1);
	border-radius: 15px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1000;
}

/* BUSINESS NAME (logo-title) */
.logo-title {
	padding:10px;
    z-index: 1001;
    text-align: center;
}

a {
    text-decoration: none;
}

.logo-title-text {
	font-size: 34px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 1);
	margin-bottom:0px;
}

.logo-slogan1 {
	font-size: 22px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 138, 23, 0.85);
	position: center;
}

.logo-slogan2 {
	font-size: 20px;
    font-family: 'Audiowide', cursive;
    font-weight: bold;
    color: rgba(255, 88, 0, 1);
	position:center;
}

/* LINK STYLING */
.nav-links a {
	color: rgba(255, 138, 23, 1);
	text-decoration: none;
	font-weight: bold;
}

.nav-links a:hover {
    color: rgba(255, 88, 0, 1); /* Change color to white on hover */
}

/*NAVBAR MENU*/
.menu {
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-grow: 1;
    height: 100%;
    z-index: 1001;
    position: relative; /* Or use transform: translateY(0); */
    top: 0;
    transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
}

/* NAVBAR MENU HOVER STYLING */
.menu li:hover {
	
	transition: 0.3s ease;
    transform: translateY(-7px);
}

.menu li {
	padding: 5px 14px;
}

.dropdown-item {
    position: relative;
    display: inline-block; /* To align horizontally with other list items */
    padding: 5px 14px; /* Match the padding of other .menu li items */
}

.dropdown-item:hover {
     /* Match the hover background of other .menu li items */
    border-radius: 5px;
    transition: 0.3s ease;
}

.dropbtn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
    /* The padding for the dropbtn is handled by the .dropdown-item's padding */
    /* Remove padding here if it's already on .dropdown-item */
    display: block; /* Make the whole area clickable within the padding */
    background-color: transparent; /* Ensure no default button background */
    border: none; /* Ensure no default button border */
    cursor: pointer; /* Show pointer on hover */
    outline: none; /* Remove focus outline */
}

.dropdown-content {
    display: none;
    position: absolute;
	color: rgba(255, 138, 23, 1);
    font-weight: 300;
    font-style: normal;
	border-radius: 15px;
    width: 150px;
    z-index: 1;
    top: 100%; /* Position below the dropdown button */
    left: 0;
    background-color: #fff;
    border: 1px solid rgba(255, 138, 23, 1);
    

}

.dropdown-content a {
    color: rgba(255, 138, 23, 1);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-weight: bold;
	gap:18px;
	font-size: 20px;
    
}

.dropdown-content a:hover {
    
	color: rgba(255, 88, 0, 1);
	border-radius: 5px;
	transition: 0.3s ease;
}
.dropdown-item:hover .dropdown-content {
    display: block;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;

}

/* ... (your existing CSS for body, main, forms, navbar, footer, etc.) ... */

/* --- New: Scrolling Text Banner Styling --- */

.scroll-left {
    height: 50px;	
    overflow: hidden; /* Hides content that overflows the box */
    position: relative; /* Needed for absolute positioning of child <p> */
    color: rgba(255, 138, 23, 1); /* Consider changing this color to match your site's theme */
    border: 1px solid orange; /* Consider changing this color to match your site's theme */
    width: 100%; /* Ensure it spans the full width available */
    box-sizing: border-box; /* Include padding/border in the width calculation */
    margin: 20px 0; /* Add some margin above/below the banner */
    padding: 0 10px;
	/* Optional: small horizontal padding */
}

.scroll-left p {
    position: absolute; /* Allows positioning relative to its parent .scroll-left */
    width: 100%;
    height: 100%;
    margin: 0; /* Remove default paragraph margins */
    line-height: 50px; /* Vertically centers text if height is 50px */
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:24px;
    
    /* Starting position */
    transform: translateX(100%);
    /* Apply animation to this element */
    animation: scroll-left 18s linear infinite;

    /* Optional: Inherit your theme's font, e.g. */
    /* font-family: 'Audiowide', cursive; */ 
    /* font-size: 20px; */
}

/* Define the animation (the actual movement) */
@keyframes scroll-left {
    0% {
        transform: translateX(100%); /* Starts off-screen to the right */
    }
    100% {
        transform: translateX(-100%); /* Moves to off-screen to the left */
    }
}


.header {
	width:100%;
	background-image: url("Images\header4.png");
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents tiling if image is too small */
}

.logo {
    position: absolute; 
	padding-left:30px;
    margin-left: 60px;
    top: 0; 
    left: 0; 
    width: 50%; 
    height: auto;
    object-fit: contain; 
	transform: translate(65%, 25%);
    /* transform: translate(-50%, -50%); */ /* Centers it */
    z-index: 2; /* Ensures it's on top of .bottom-image (which is z-index 1 by default flow) */
    opacity: 1; /* Example: Make it semi-transparent if it's a watermark */
	background-image: url("Images\logo-circle.png");
    background-size: cover; /* Ensures the image covers the entire area */
    background-repeat: no-repeat; /* Prevents tiling if image is too small */
}

.title {
	font-family:'Audiowide', cursive;
    font-size: 50px;
    margin-bottom: 10px;
	color: rgba(255, 138, 23,1);
	text-align:center;
    
}
.title-overlay, .intro-text-overlay {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, 0%);
    z-index: 3;
    
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0);
    font-family: 'Audiowide', cursive;
    width: 570;
    max-width: 500px;
    margin-left: 10px;
}

.title-overlay {
    font-size: clamp(2.5rem, 6vw, 45px);
	color: rgba(255, 138, 23,1);
    top: 40%;
    left: 5%;
	transform: translate(0%,-180px);
}

.intro-text-overlay {
    font-size: clamp(1rem, 2.5vw, 18px);
    top: 60%;
    left: 5%;
    line-height: 1.5;
	color: #5F595D;
	transform: translate(0%, -150px);
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
    width:500px;
    padding-right: 30px;
	
}

.subtitle {
    font-family: 'Audiowide', cursive;
    font-weight: bold;
	color: rgba(255, 138, 23, 1);
	font-size:30px;
	margin-bottom: 20px;
    margin-top: 60px;
	text-align:center;
}

.explore-container{
	padding:10px;
	display:flex;
    justify-content: center; /* Centers items horizontally within the container */
    align-items: flex-start; /* Aligns items to the start of the cross-axis (top) */
    gap: 40px;
	flex-wrap:wrap;
	
	
}

.explore-card{
	border:2px;
	border-radius:8px;
	box-shadow: 0 4px 8px rgba(255, 179, 94, 1);
	width:300px;
	height:200px;
	padding: 5px;
    text-align: center;
    position: relative; /* Or use transform: translateY(0); */
    top: 0;
     transition: transform 0.5s ease-out, box-shadow 0.5s ease-out;
	
}

.explore-card:hover {
  /* Move the box up by 10 pixels */
  transform: translateY(-20px);

  /* Optional: Enhance the shadow for a more "lifted" look */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.explore-title{
	font-family: 'Audiowide', cursive;
    font-weight: bold;
	font-size: 20px;
	color:rgba(255, 138, 23, 1);
	margin-bottom:0px;
	padding-left: 5px;
	padding-right:5px;
    text-align: center;
	
}

a {
    text-decoration: none; /* Removes the blue underline */
    color: inherit; /* Makes link text inherit color from parent by default */
}



.explore-description{
	font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size:20px;
	color: #5F595D;
	padding-left:5px;
	padding-right:5px;
    text-align: center;
	
}

.explore-card a {
    display: inline-block;
    background-color: rgba(255, 138, 23, 1);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-family: "WDXL Lubrifont JP N", sans-serif;
	font-weight: 300;
    transition: background-color 0.3s ease;
}

.explore-card a:hover {
    background-color: rgba(255, 179, 94, 1);
}

.logo-footer {
    width: 25%;
    height: auto;
    /* You might want to adjust max-width if the logo gets too big on large screens */
    max-width: 250px; /* Example: set a max-width */
}

hr.rounded {
    border-top: 3px solid rgba(255, 138, 23, 1);
    border-radius: 5px;
    width: 75%; /* This will be relative to its flex container */
    margin: 0; /* Remove default margins */
}

.footer-divider {
    display: flex;
    /* Change to column to stack the logo/divider/links vertically initially */
    flex-direction: row; /* Keep it row for logo and the new container */
    align-items: flex-start; /* Align items to the start of the cross axis */
    gap: 20px;
    padding: 20px;
    width: 90%;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}

.divider-and-links-container {
    display: flex;
    flex-direction: column; /* Stack HR and Nav vertically */
    flex-grow: 1; /* Allow this container to take up remaining space */
    align-items: flex-start; /* Align children (hr and nav) to the start */
    gap: 10px; /* Space between the HR and the links */
}



.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 960px; /* Or adjust to fit your design */
    margin: 0; /* Remove auto margin as it's now a child of a flex item */
    padding: 10px; /* Adjust padding here if needed */
    /* If you want the black background only around the links: */
    /* background-color: black; */
    /* padding: 10px 20px; */
}


.footer-links a {
    color: rgba(255, 138, 23, 1);
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.footer-links a:hover {
    color: rgba(255, 88, 0, 1);
}

.contact-icon{
    width: 40px;
    height: auto;
    filter: invert(45%) sepia(97%) saturate(790%) hue-rotate(352deg) brightness(100%) contrast(100%);
    align-items: center;
    transition: filter 0.3s ease;
    }
.contact-icon:hover{
    filter: invert(53%) sepia(91%) saturate(2304%) hue-rotate(342deg) brightness(101%) contrast(105%);
     
}


/*Boring stuff*/

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

main {
    margin-top: 100vh;
    position: relative;
    z-index: 2;
    background-color: #fff;
    padding: 20px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 5px;
        border-radius: 0;
    }
    .logo-title {
        text-align: center;
        width: 100%;
        padding: 5px 0;
    }
    .menu {
        flex-direction: column;
        width: 100%;
        gap: 5px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 138, 23, 0.5);
    }
    .menu li {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-item {
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }
    .dropdown-content {
        position: static;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    .dropdown-content a {
        padding: 10px 0;
    }

    .logo-overlay {
        left: 50%;
        transform: translate(-50%, -50%);
        width: 35%;
    }

    .title-overlay {
        font-size: clamp(2rem, 8vw, 40px);
        top: 60%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
    .intro-text-overlay {
        font-size: clamp(0.9rem, 3vw, 16px);
        top: 75%;
        left: 50%;
        text-align: center;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .logo-title {
        font-size: clamp(16px, 6vw, 24px);
    }
    .nav-links a, .dropbtn {
        font-size: clamp(12px, 3.5vw, 16px);
    }
}
